home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 014 / arca109.arc / ARCA109.DOC < prev   
Encoding:
Text File  |  1986-04-23  |  3.8 KB  |  124 lines

  1.  
  2.                ARCA - Add to Archive File
  3.  
  4.                Experimental Version 1.09
  5.           (c) Wayne Chin and Vernon Buerg, 1986
  6.  
  7.  
  8. Purpose:  To create or add files to an ARC archive file.
  9.  
  10. Format:   ARCA  [d:][path]arcname.ext  [filespecs...]  [/D]
  11.  
  12. Remarks:  The drive and path names are optional. If omitted, the
  13.         current drive and path name are used.
  14.  
  15.         The 'arcname' file name must be supplied.  The extension
  16.         defaults to ARC.  All files matching the supplied filespecs are
  17.         processed.  The input 'filespecs' may contain the * and ?
  18.         wildcard characters.
  19.  
  20.         If an existing archive file is used, the specified input
  21.         files are added to the end of it. There is no checking
  22.         for duplicate filenames. Existing archive member files
  23.         are not replaced.
  24.  
  25.         Because only the crunching (LZW) method of compression is used,
  26.         the archive file may not be identical to the archive file
  27.         created by the ARC program from SEA, the authors of ARC.
  28.  
  29.     If the filename of the target archive file matches an
  30.     input file specification, it is ignored.
  31.  
  32.         The /D option specifies that all input files be deleted.  The
  33.         files are deleted after successful processing of all of the
  34.         input files.
  35.  
  36.  
  37.  Examples:
  38.  --------
  39.  
  40.         o  Create an archive file called TEST.ARC, and place all
  41.            files from the current directory into it:
  42.  
  43.               ARCA TEST *.*
  44.  
  45.         o  Create an archive called SOURCE.ARC in the subdirectory
  46.            \SAVE on drive B, and place all files with an extension
  47.            of ASM into to:
  48.  
  49.               ARCA B:\SAVE\SOURCE *.ASM
  50.  
  51.  
  52.         o  Add files to the archive on drive A called PROGA.ARC all
  53.            files in subdirectory \TEST on drive C, all files with a
  54.            filename beginning with NE, and all file from the subdirectory
  55.            \OLD on drive B:
  56.  
  57.               ARCA A:PROGA.ARC C:\TEST\*.* NE*.* B:\OLD\*.*
  58.  
  59.  
  60.  Error Messages:
  61.  --------------
  62.  
  63.     ARCA: filename, compressing, done.
  64.         This message is issued for each 'filename' added to
  65.         the archive file. The program continues.
  66.  
  67.  
  68.     ARCA: No matching files!
  69.         No files were found that matched one of the 'filespecs'
  70.         in the command line. The program terminates.
  71.  
  72.  
  73.     ARCA: You must use DOS version 2.0 or higher.
  74.         DOS version 2.0 or higher is required. The program terminates.
  75.  
  76.     ARCA: Insufficient memory.
  77.         A minimum of 34k is required. The program terminates.
  78.  
  79.  
  80.     ARCA: Shrink failed.
  81.         This error should not occur. If it does, there is a problem
  82.         with DOS. The program terminates.
  83.  
  84.  
  85.     ARCA: Can't create archive file.
  86.         There is no room in the target directory to create the
  87.         specified archive file, or the target disk has become full.
  88.  
  89.  
  90.  Version history:
  91.  ---------------
  92.  
  93.         1.07 - 4/21/86, initial release
  94.     1.08 - 4/22/86, add DLE compression
  95.     1.09 - 4/23/86, do not add zero length files
  96.  
  97.  
  98.  Notice:
  99.  ------
  100.         Copyright (c) Wayne Chin and Vernon Buerg 1986;
  101.         for the IBM PC using DOS 2.0 or later. All rights reserved.
  102.     Commercial users should contact SEA for information
  103.     concerning the use of the ARC system.
  104.  
  105.           System Enhancement Associates
  106.           21 New Street
  107.           Wayne,  NJ  07470
  108.  
  109.     This program uses new algorithms for compressing data.
  110.     The resultant archive files will not match those produced
  111.     by the SEA ARC program, but the files can be extracted by
  112.     all ARC compatible programs.
  113.  
  114.     A major improvement in performance is due to the use
  115.     of only one method for compressing and storing data.
  116.     Future version may include other storage methods.
  117.  
  118.                 Vernon D. Buerg
  119.                 456 Lakeshire Drive
  120.                 Daly City, CA  94015
  121.                 CompuServe: 70007,1212
  122.                 Data/RBBS:  415-994-2944
  123.  
  124.